*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e2a38;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 12%;
    background: rgb(75, 75, 75);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.logo:hover{
    color: rgb(27, 154, 27);
    text-shadow: 0 0 25px rgb(27, 154, 27),
                 0 0 50px rgb(27, 154, 27);
    transform: scale(1.1);
}

span{
    color: rgb(27, 154, 27);
}

.navbar a{
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active{
    color:rgb(27, 154, 27);
    border-bottom: 3px solid rgb(27, 154, 27);
}

.home{
    width: 100%;
    min-height: 60vh;
    background: rgb(241, 241, 241);
    display: flex;
    align-items: center;
    gap: 2em;
    padding: 15px 6% 0;
}

.home-content{
    max-width: 450px;
}

.home-content h1{
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: black;
}

.home-content p{
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.6;
    color: black;
}

.button-container{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-2{
    background-color: #4caf50;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.btn-2:hover{
    background-color: #45a049;
}

.img-box{
    margin-left: auto;
}

.img-box img{
    border-radius: 50%;
    width: 300px;
    height: auto;
}

::-webkit-scrollbar{
    width: 15px;
}

::-webkit-scrollbar-thumb{
    background-color: rgb(27, 154, 27);
}

::-webkit-scrollbar-track{
    background-color: black;
    width: 50px;
}

.about{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8% 6%;
    gap: 6em;
    background: #2d2d3a;
}

.about-content{
    text-align: center;
    color: white;
    padding: 20px;
}

.about-img img{
    position: relative;
    width: 200px;
    box-shadow: 0 0 25px rgb(27, 154, 27),
                0 0 50px rgb(27, 154, 27);
    border-radius: 50%;
}

.about-content h2{
    font-size: 36px;
    margin-bottom: 8px;
}

.about-content ul{
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    color: #c0c0c0;
}

.about-content ul li{
    font-size: 16px;
    margin: 8px 0;
}

.footer{
    position: relative;
    width: 100%;
    padding: 40px 0;
    background-color: black;
    margin-top: auto;
}

.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: white;
}
.footer .social a{
    font-size: 24px;
    color: white;
    border: 2px solid rgb(27, 154, 27);
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px rgb(27, 154, 27), 0 0 10px rgb(27, 154, 27);
    transition: 0.3s ease;
}
.footer .social a:hover{
    transform: scale(1.2)translate(-10px);
    color: rgb(27, 154, 27);
    border: 2px solid rgb(27, 154, 27);
}
.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li a{
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.footer ul li a:hover{
    border-bottom: 3px solid rgb(27, 154, 27);
}
.footer ul li{
    display: inline-block;
    padding: 0 15px;
}
.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: white;
}

.rootme {
    width: 100px;
    height: auto;
    max-width: 100%;
}

.orga-container {
    text-align: center;
    margin-top: 20px;
}

.orga-container img {
    max-width: 40%;
    height: auto; 
}

.orga-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-bk {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 20px;
}

.social-bk a {
    color: rgb(27, 154, 27);
    font-size: 24px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-bk a:hover {
    color: rgb(75, 75, 75);
    transform: translateX(-5px);
}

@media screen and (max-width: 1200px) {
    .header {
        padding: 25px 8%;
    }
    .home {
        padding: 30px 8% 0;
        gap: 4em;
    }
    .about {
        padding: 8% 8%;
        gap: 5em;
    }
}

@media screen and (max-width: 991px) {
    .header {
        padding: 20px 5%;
    }
    .navbar a {
        font-size: 16px;
        margin: 0 10px;
    }
    .home {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 0;
        gap: 2em;
    }
    .home-content {
        max-width: 100%;
    }
    .img-box {
        margin: 0 auto;
    }
    .img-box img {
        width: 250px;
    }
    .about {
        flex-direction: column;
        text-align: center;
        padding: 5% 5%;
        gap: 3em;
    }
    .about-content h2 {
        font-size: 36px;
    }
    .about-content ul li {
        font-size: 18px;
    }
    .social-bk {
        margin: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 15px 5%;
    }
    .logo {
        font-size: 20px;
    }
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgb(75, 75, 75);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px 0;
        transition: 0.3s ease;
        z-index: 10000;
    }
    .navbar.active {
        right: 0;
    }
    .navbar a {
        display: block;
        font-size: 20px;
        margin: 15px 0;
        padding: 10px 20px;
        border-radius: 5px;
        transition: 0.3s ease;
    }
    .navbar a:hover {
        background: rgb(27, 154, 27);
        color: white;
    }
    .home-content h1 {
        font-size: 42px;
    }
    .img-box img {
        width: 220px;
    }
    .about-img img {
        width: 200px;
    }
    .social-bk {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .home-content h1 {
        font-size: 36px;
    }
    .home-content p {
        font-size: 16px;
    }
    .img-box img {
        width: 200px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .about-content ul li {
        font-size: 16px;
    }
    .footer ul li {
        display: block;
        margin: 10px 0;
    }
    .orga-container img {
        max-width: 80%;
    }
}

#menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    color: white;
}

@media screen and (max-width: 768px) {
    #menu-icon {
        display: block;
    }
}